home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Softshoe / Lisa's Mac Parts / AppleEvents / Events / AEParameter.h < prev    next >
Text File  |  2000-06-23  |  503b  |  28 lines

  1. // AEParameter.h
  2.  
  3. #ifndef AEParameter_h
  4. #define AEParameter_h
  5.  
  6. #ifndef ConstAEParameter_h
  7. #include "ConstAEParameter.h"
  8. #endif
  9.  
  10. class AEDescriptor;
  11.  
  12. class AEParameter: public ConstAEParameter
  13.   {
  14.     public:
  15.         AEParameter( AEEvent& theEvent, AEKey theKey )
  16.           : ConstAEParameter( theEvent, theKey )
  17.           {}
  18.         
  19.         AEEvent& Event() const        { return const_cast<AEEvent&>( ConstAEParameter::Event() ); }
  20.  
  21.         void Remove();
  22.         
  23.         void operator=( const AEDescriptor& );
  24.         void Set( AEType, ConstData );
  25.   };
  26.  
  27. #endif
  28.